//04_Loop concept //prac_05 //wap to print table number #include #include void main() { int i,n; clrscr(); printf("Enter table number:"); scanf("%d",&n); for (i=1;i<=10;i++) { printf("%d \n",i*n); } getch(); } /* ------output-------- Enter table number:4 4 8 12 16 20 24 28 32 36 40 */